Welcome![Sign In][Sign Up]
Location:
Search - assembler code

Search list

[Other resourceMSP430x41x_A

Description: MSP430FX41x Assembler Examples Code,Composer Essentials Code Examples
Platform: | Size: 47814 | Author: 李志 | Hits:

[ELanguageas51src

Description: A 8051 assembler .any one can learn how to write assembler in this example.and this function code has been work well for a 8051 assemble.
Platform: | Size: 48395 | Author: wang_chuan | Hits:

[GDI-Bitmape3-2.7.1.tar

Description: e3 is a micro text editor with an executable code size between 3800 and 35000 bytes, depending on used assembler options, platform and self compressor. 是一个用汇编编写的适合很多操作系统的编辑器,可以适配vi\\emacs等多种习惯的快捷键使用
Platform: | Size: 189422 | Author: liushaolin | Hits:

[assembly language汇编作业

Description: 汇编程序原代码.-assembler source code.
Platform: | Size: 3588 | Author: 骆观日 | Hits:

[Other resourcespra755a

Description: This application report presents basic code for initializing and operating the TMS320LF240x DSP devices. Two functionally equivalent example progra ms are presented: one written in assembly language and the other in C language. Detailed discussions of each program are provided that explain numerous compiler and assembler directives, code requirements, and hardware-related requirements. The programs are ready to run on either the TMS320LF2407 Evaluation Module (EVM) or the eZdsp LF2407 development kit. However, they are also intended for use as a code template for any TMS320LF240x (LF240x) or TMS320LF240xA (LF240xA) DSP target system.
Platform: | Size: 193238 | Author: 李志 | Hits:

[Otherhuibianyili

Description: 汇编程序从键盘输入一个字符,要求调用bios中断,并用八进制的形式显示其扫描码和ascii码-assembler input from the keyboard of a character, called bios interrupt request, and octal form indicating their scan code and code ascii
Platform: | Size: 1137 | Author: 陈涛 | Hits:

[ELanguage编译原理代码tinymachine

Description: 编译原理的词法,语法,分析等,还有劳顿的tiny machine (tm.c)的代码实现,前面还有相应的汇编程序 -compiler principles of morphology, syntax and analysis, there is a tiny machine Lawton (tm.c) the implementation of the code, still ahead of the corresponding assembler
Platform: | Size: 34903 | Author: 王超 | Hits:

[assembly language汇编语言课程设计报告

Description: 汇编程序报告,有详细解析和源代码.用于实现DOS窗口右上角显示计时器的中断服务程序.-assembler report, a detailed analysis and source code. DOS window for the upper right-hand corner shows the timer interrupt service procedures.
Platform: | Size: 51536 | Author: 高帅 | Hits:

[Other resourcexgh

Description: 用汇编语言编写的画三个圆的源代码,一个大圆在屏幕中央,两个小圆在大圆两侧并且直径相等-assembler language of painting three round source code, a great circle of the screen, two knolls on both sides and the great circle equivalent diameter
Platform: | Size: 1094 | Author: 谢冠华 | Hits:

[Windows DevelopMyGiftPiano

Description: MyGiftPiano_32位汇编在WINDOWS环境下做成的一个钢琴模拟软件 这是我送给我一个好友的一个作品,是在学习自学了32位汇编语言后做 的。比较简单,效果却很不错!内有源代码、MAKE工具、MAKEFILE文件 等说明。值得一读。-MyGiftPiano_is a 32 bit assebler software using for piano simulation in Windows system. This is a project after I learned the 32 bits assembler language and is a gift to my best friend. It s simple but has perfect effect. The software itself include source code, the MAKE tool, MAKEFILE documents ect. It s worth a try!
Platform: | Size: 79244 | Author: 谷穗 | Hits:

[OS program调用汇编代码_me

Description: 一个有关VC中嵌入汇编语言代码的例子,这个是自己原创的作品,欢迎使用!-an embedded assembler language code examples, this is their original work, Welcome!
Platform: | Size: 10082 | Author: 搜索死 | Hits:

[GUI DevelopHacker Disassembler Engine

Description: Please excuse my english... It's so bad :) Hacker Disassembler Engine, or HDE, is small disassembler engine, which intend to code analyse. HDE get length of command, prefixes, ModR/M and SIB bytes, opcode, immediate, displacement, relative address, etc. For example, you can use HDE when writing unpackers or decryptors executable files, because more others disassemblers too big, get only disasm listing and aren't intended for code analys, but more simple length disassemblers usually get too little info. HDE get enough info to analyse, but it has very small size. HDE package include DLL, objects, headers files and and source. + support MMX, SSE, SSE2, SSE3, 3DNow! instructions + high-speed & small size (coded in assembler ;) + compatibility with most coding language To disassemble should call hde_disasm function: DWORD hde_disasm( void *pCode // pointer to code HDE_STRUCT *pHDE_STRUCT // pointer to structure HDE_STRUCT ); Function return length of command and fill structure HDE_STRUCT: struct HDE_STRUCT { BYTE len; // length of command BYTE p_rep; // rep/repnz/.. prefix: 0xF2 or 0xF3 BYTE p_lock; // lock prefix 0xF0 BYTE p_seg; // segment prefix: 0x2E, 0x36, 0x3E, 0x26, 0x64, 0x65 BYTE p_66; // prefix 0x66 BYTE p_67; // prefix 0x67 BYTE opcode; // opcode BYTE opcode2; // second opcode, if first opcode equal 0x0F BYTE modrm; // ModR/M byte BYTE modrm_mod; // - mod byte of ModR/M BYTE modrm_reg; // - reg byte of ModR/M BYTE modrm_rm; // - r/m byte of ModR/M BYTE sib; // SIB byte BYTE sib_scale; // - scale (ss) byte of SIB BYTE sib_index; // - index byte of SIB BYTE sib_base; // - base byte of SIB BYTE imm8; // immediate imm8 WORD imm16; // immediate imm16 DWORD imm32; // immediate imm32 BYTE disp8; // displacement disp8 WORD disp16; // displacement disp16, if prefix 0x67 exist DWORD disp32; // displacement disp32 BYTE rel8; // relative address rel8 WORD rel16; // relative address rel16, if prefix 0x66 exist DWORD rel32; // relative address rel32 }; Opcode and len fields always exist, others are optional and depend of command. If field's value equal zero, then it isn't existing. Note: HDE work only with 32-bit commands of x86 processors !
Platform: | Size: 23447 | Author: sys0007 | Hits:

[SourceCode完整的C编译器源代码

Description: 一个完整的C编译器源代码, 可以编译出windows下可执行的exe文件,程序不大,总共不到2w行代码,是学习C编译器的好例子。 Features * SMALL! You can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker). * FAST! tcc generates x86 code. No byte code overhead. Compile, assemble and link several times faster than GCC. * UNLIMITED! Any C dynamic library can be used directly. TCC is heading torward full ISOC99 compliance. TCC can of course compile itself. * SAFE! tcc includes an optional memory and bound checker. Bound checked code can be mixed freely with standard code. * Compile and execute C source directly. No linking or assembly necessary. Full C preprocessor and GNU-like assembler included. * C script supported : just add '#!/usr/local/bin/tcc -run' at the first line of your C source, and execute it directly from the command line. * With libtcc, you can use TCC as a backend for dynamic code generation.
Platform: | Size: 382914 | Author: wukercheng@yahoo.com.cn | Hits:

[assembly languagecrc

Description: CRC s ASM implementation
Platform: | Size: 5120 | Author: laofu | Hits:

[assembly language菜单使用的例子

Description: masm32菜单使用的例子-masm32 menu use example
Platform: | Size: 6144 | Author: | Hits:

[Windows Develop20039120241617408

Description: 主要内容包含: AMI (American Megatrends Inc.)之BIOS源代码(Source Code),版本为6.27.10 (简称627.10)。由于本Open Source BIOS源代码是针对采用SiS530整合芯片组为结构的主机板而设计,所以当您准备钻研此源代码,或编译自己的BIOS监控程序之前,需要自已准备一些工具才行。 在硬件部份,请准备一片SiS530 (不限品牌)的主机板,与足够的Flash 工具 (如烧写BIOS要用的FlashROM、拔IC专用的IC夹等等),以作为研究的材料。 在软件部份,还需要准备Microsoft Assembler 6.11。 虽然CODE有点小缺漏,但其中好东西多多!-main contents include : AMI (American Megatrends Inc.) Zhi BIOS source code (Source Code), version 6.27.10 (627.10). As the Open Source BIOS source code is used against SiS530 integrated chip structure of the group and the motherboard design, and so, when are you going to study this source code, or compile their own BIOS control procedures required before preparing their own tools it. The hardware part, please prepare a SiS530 (Open-brand) motherboard, with enough Flash tools (such as the use of burning BIOS Flash, pulling IC dedicated IC folders, etc.), as research material. The software portion, but also need to be prepared to Microsoft Assembler 6.11. Although CODE a little gaps, but many good things!
Platform: | Size: 15360 | Author: | Hits:

[Streaming Mpeg4fdct8x8

Description: TI C64x下的FDCT汇编程序源代码,效率较高,可直接使用-TI C64x the diagram assembler source code, the more efficient use of direct
Platform: | Size: 10240 | Author: 吴晓岭 | Hits:

[assembly language汇编作业

Description: 汇编程序原代码.-assembler source code.
Platform: | Size: 3072 | Author: 骆观日 | Hits:

[Otherhuibianyili

Description: 汇编程序从键盘输入一个字符,要求调用bios中断,并用八进制的形式显示其扫描码和ascii码-assembler input from the keyboard of a character, called bios interrupt request, and octal form indicating their scan code and code ascii
Platform: | Size: 1024 | Author: 陈涛 | Hits:

[assembly language汇编语言课程设计报告

Description: 汇编程序报告,有详细解析和源代码.用于实现DOS窗口右上角显示计时器的中断服务程序.-assembler report, a detailed analysis and source code. DOS window for the upper right-hand corner shows the timer interrupt service procedures.
Platform: | Size: 51200 | Author: 高帅 | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 29 »

CodeBus www.codebus.net